home *** CD-ROM | disk | FTP | other *** search
- function document.ButtonForm2.onsubmit(){
-
- var noChecks=true;
- var componentValue,paramName,paramValue;
-
- for (var i=0; i<document.ButtonForm2.elements.length; i++)
- {
- if (document.ButtonForm2.elements[i].type.toLowerCase() == "radio") {
- if (document.ButtonForm2.elements[i].checked == true) {
- paramValue= document.ButtonForm2.elements[i].value;
- noChecks= false;
- componentValue = document.ButtonForm2.elements[i].id;
- }
- }
- }
- if (noChecks) {
- parent.t1.ApgtsX21.NotifyNothingCkecked("");
- return (false);
- }
- else loader(componentValue, paramValue);
-
- return false;
- }
-